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 7495183 commit eab97c7Copy full SHA for eab97c7
plugins/envsetup
@@ -442,6 +442,17 @@ run_cmd() {
442
do_chroot_ae "$chroot_dir" "$command"
443
}
444
445
+run_shell_script() {
446
+ lshout "Running script: $1"
447
+ echo
448
449
+ local script=$1
450
+ cp -v "$script" "$chroot_dir"
451
+ chmod +x "$chroot_dir/$(basename $script)"
452
+ do_chroot_ae "$chroot_dir" /bin/bash "/$script"
453
+ echo "Done running script: $1"
454
+}
455
+
456
install_pkg()
457
{
458
pkg_name="$*"
0 commit comments