Skip to content

Commit 0728500

Browse files
committed
add a -s (shell) option to start a bash with ARM env pushed
1 parent fdddad2 commit 0728500

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

distribute.sh

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -615,14 +615,20 @@ function arm_deduplicate() {
615615

616616

617617
# Do the build
618-
while getopts ":hvlfm:d:" opt; do
618+
while getopts ":hvlfm:d:s" opt; do
619619
case $opt in
620620
h)
621621
usage
622622
;;
623623
l)
624624
list_modules
625625
;;
626+
s)
627+
push_arm
628+
bash
629+
pop_arm
630+
exit 0
631+
;;
626632
m)
627633
MODULES="$OPTARG"
628634
;;

0 commit comments

Comments
 (0)