You've already forked ios-deploy
mirror of
https://github.com/encounter/ios-deploy.git
synced 2026-03-30 11:16:56 -07:00
11 lines
158 B
Bash
Executable File
11 lines
158 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ -z "$1" ]
|
|
then
|
|
echo "Usage: $0 [version_to_set]"
|
|
exit 1
|
|
fi
|
|
|
|
echo "\"$1\"" > src/ios-deploy/version.h
|
|
npm version --no-git-tag-version $1
|