mirror of
https://github.com/Pmodules/Pmodules.git
synced 2026-06-28 02:19:39 +02:00
12 lines
271 B
Bash
12 lines
271 B
Bash
#!/bin/sh
|
|
|
|
unset BASH_ENV
|
|
|
|
declare mydir=$(cd $(dirname "$0") && pwd)
|
|
declare libexecdir="$(dirname "${mydir}")/libexec"
|
|
|
|
declare bash="${libexecdir}/bash"
|
|
declare modmanage="${libexecdir}/modmanage.bash"
|
|
|
|
"${bash}" --noprofile --norc "${modmanage}" "$@"
|