mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-07 20:39:04 +03:00
9 lines
166 B
Bash
Executable File
9 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
|