mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-27 02:48:34 +00:00
8 lines
166 B
Bash
Executable file
8 lines
166 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [[ $# < 1 ]]; then
|
|
echo "Missing version increment (major, minor, or patch)" >&2
|
|
exit 1
|
|
fi
|
|
|
|
exec script/lib/bump-version.sh collab collab-v '' $1
|