File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
# Link inject_version.sh
3
+
3
4
set -e
5
+
6
+ # The default grep on AIX does not support the -o flag; so prepend /opt/freeware/bin to $PATH
7
+
8
+ case $( uname) in
9
+ AIX) PATH=/opt/freeware/bin:$PATH ;;
10
+ esac
11
+
4
12
# A local or jenkins builder will call this script from the root of the checked out git repo
5
13
# Another build mechanism might copy files to another directory before modifying them
6
14
if [ $# -eq 0 ];
@@ -44,4 +52,3 @@ echo ${full_version}
44
52
45
53
sed -i " s/^version\s\?←\s\?'[0-9]\+\.[0-9]\+\.[0-9]\+-\?\w\+\?/version←'${full_version} /" ${D} /StartupSession/Link/Version.aplf
46
54
47
- exit 0
Original file line number Diff line number Diff line change 1
1
version←Version
2
- version←'3.0.18 '
2
+ version←'3.0.19 '
You can’t perform that action at this time.
0 commit comments