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 8dcfd4a commit c32b9b2Copy full SHA for c32b9b2
udroid/src/udroid.sh
@@ -761,9 +761,9 @@ login() {
761
parser() {
762
local arg=$1
763
local mode=$2
764
- readonly suite=${arg%%:*} # readonly basically makes this public and
765
- readonly varient=${arg#*:} # unchangeable outside of this function
766
-
+ declare -g suite=${arg%%:*} # declare -g | declare globally
+ declare -g varient=${arg#*:}
+
767
LOG "[USER] function args => suite=$suite varient=$varient"
768
769
# if TEST_MODE is set run scripts in current directory and use test.json for distro_conf
0 commit comments