We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7599d0f commit 121c0fcCopy full SHA for 121c0fc
scripts/deploy.sh
@@ -1,6 +1,13 @@
1
#!/usr/bin/env bash
2
3
# Usage: deploy.sh <version> <full version>
4
+#
5
+# Example:
6
+# cd scripts
7
+# ./deploy.sh 107 v1.0.7
8
9
+# Requires jdk8, which may be set with JAVA_HOME env variables.
10
+# See RELEASE.md for details on using this script.
11
12
ROOT=$(dirname "${BASH_SOURCE}")/..
13
numberOfParams=2
@@ -39,7 +46,7 @@ function deploy {
39
46
perl -i -pe "s|\@\@mode-version\@\@|${version}|g" docs/RLangMode.txt
40
47
perl -i -pe "s|\@\@pretty-version\@\@|${full_version}|g" docs/RLangMode.txt
41
48
42
- source "$(dirname "${BASH_SOURCE}")/utils/generator-util.sh"
49
+ source "scripts/utils/generator-util.sh"
43
50
44
51
# Path to be changed
45
52
modes="${HOME}/Documents/Processing/modes"
0 commit comments