Commit b5de2377 authored by Vitaly Lipatov's avatar Vitaly Lipatov

epm(): run the script via bash

parent 0fb00cdd
master 3.60.13 3.60.12 3.60.11 3.60.10 3.60.9 3.60.8 3.60.7 3.60.6 3.60.5 3.60.4 3.60.3 3.60.2 3.60.1 3.60.0 3.59.0 3.58.4 3.58.3 3.58.2 3.58.1 3.58.0 3.57.14 3.57.13 3.57.12 3.57.12-alt1 3.57.11-alt1 3.57.10 3.57.10-alt1 3.57.9 3.57.8 3.57.8-alt1 3.57.7 3.57.7-alt1 3.57.6 3.57.6-alt1 3.57.5 3.57.5-alt1 3.57.4 3.57.4-alt1 3.57.3 3.57.3-alt1 3.57.2 3.57.2-alt1 3.57.1 3.57.1-alt1 3.57.0 3.57.0-alt1 3.56.2 3.56.2-alt1 3.56.1 3.56.1-alt1 3.56.0 3.56.0-alt1 3.55.8 3.55.8-alt1 3.55.7 3.55.7-alt1 3.55.6 3.55.6-alt1 3.55.5 3.55.5-alt1 3.55.4 3.55.4-alt1 3.55.3 3.55.3-alt1 3.55.2 3.55.2-alt1 3.55.1 3.55.1-alt1 3.55.0 3.55.0-alt1 3.54.0 3.54.0-alt1 3.53.2 3.53.2-alt1 3.53.1 3.53.1-alt1 3.53.0 3.53.0-alt1 3.52.7 3.52.7-alt1 3.52.6 3.52.6-alt1 3.52.5 3.52.5-alt1 3.52.4 3.52.4-alt1 3.52.3 3.52.3-alt1 3.52.2 3.52.2-alt1 3.52.1 3.52.1-alt1 3.52.0 3.52.0-alt1 3.51.2 3.51.2-alt1 3.51.1 3.51.1-alt1 3.51.0 3.51.0-alt1 3.50.1 3.50.1-alt1 3.50.0 3.50.0-alt1 3.42.0 3.42.0-alt1 3.41.2 3.41.2-alt1 3.41.1 3.41.1-alt1 3.41.0 3.41.0-alt1 3.40.1 3.40.1-alt1 3.40.0 3.40.0-alt1 3.39.3-alt1 3.39.2-alt1 3.39.1-alt1 3.39.0-alt1 3.38.1-alt1 3.38.0-alt1 3.37.0-alt1 3.36.2-alt1 3.36.1-alt1 3.36.0-alt1 3.35.1-alt1 3.35.0-alt1 3.34.1 3.34.1-alt1 3.34.0 3.34.0-alt1 3.33.0-alt1 3.32.1-alt1 3.32.0 3.32.0-alt1 3.31.2-alt1 3.31.1 3.31.1-alt1 3.31.0 3.31.0-alt1 3.30.1 3.30.1-alt1 3.30.0 3.30.0-alt1 3.29.1 3.29.1-alt1 3.29.0 3.29.0-alt1 3.28.7 3.28.7-alt1 3.28.6 3.28.5 3.28.5-alt1 3.28.4 3.28.4-alt1 3.28.3 3.28.3-alt1 3.28.2-alt1 3.28.1-alt1 3.28.0 3.28.0-alt1 3.27.7-alt1 3.27.6 3.27.6-alt1 3.27.5 3.27.5-alt1 3.27.4 3.27.4-alt1 3.27.3-alt1 3.27.2 3.27.2-alt1 3.27.1 3.27.1-alt1 3.27.0 3.27.0-alt1 3.26.10 3.26.10-alt1 3.26.9 3.26.9-alt1 3.26.8 3.26.8-alt1 3.26.7 3.26.7-alt1 3.26.6 3.26.6-alt1 3.26.5 3.26.5-alt1 3.26.4-alt1 3.26.3 3.26.3-alt1 3.26.2 3.26.2-alt1 3.26.1 3.26.1-alt1 3.26.0 3.26.0-alt1 3.25.1-alt1 3.25.0-alt1 3.24.4-alt1 3.24.3 3.24.3-alt1 3.24.2 3.24.2-alt1 3.24.1 3.24.1-alt1 3.24.0 3.24.0-alt1
No related merge requests found
......@@ -282,14 +282,14 @@ clean_store_output()
epm()
{
[ -n "$PROGNAME" ] || fatal "Can't use epm call from the piped script"
$PROGDIR/$PROGNAME --inscript "$@"
bash $PROGDIR/$PROGNAME --inscript "$@"
}
# run $SUDO epm, possible from side repo
sudoepm()
{
[ -n "$PROGNAME" ] || fatal "Can't use epm call from the piped script"
sudorun $PROGDIR/$PROGNAME --inscript "$@"
sudorun bash $PROGDIR/$PROGNAME --inscript "$@"
}
# Print error message and stop the program
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment