Skip to content

Commit 52816dd

Browse files
[SDK-579] Remove trailing comma
1 parent 3c797be commit 52816dd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ci-scripts/bump_version.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ if [ -z $2 ]
55
then
66
echo "Bumping package version to $1"
77

8-
sed -E "s/current_version = .+/current_version = \'$SEMVER\',/g" setup.py > tempfile && cat tempfile > setup.py && rm -f tempfile
8+
sed -E "s/current_version = .+/current_version = \'$SEMVER\'/g" setup.py > tempfile && cat tempfile > setup.py && rm -f tempfile
99
echo --------------------------
1010
echo "Done, Package now at $1"
1111

1212
else
1313
echo "Bumping package version to $1-dev.$2"
1414

15-
sed -E "s/current_version = .+/current_version = \'$SEMVER-dev.$2\',/g" setup.py > tempfile && cat tempfile > setup.py && rm -f tempfile
15+
sed -E "s/current_version = .+/current_version = \'$SEMVER-dev.$2\'/g" setup.py > tempfile && cat tempfile > setup.py && rm -f tempfile
1616

1717
echo --------------------------
1818
echo "Done, Package now at $1-dev.$2"

0 commit comments

Comments
 (0)