
| Current Path : /proc/thread-self/root/proc/thread-self/root/snap/chromium/current/snap/command-chain/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : //proc/thread-self/root/proc/thread-self/root/snap/chromium/current/snap/command-chain/run |
#!/bin/bash
if [ -z "$1" ]; then
echo "run <command>"
exit 1
fi
if [ -z "${SNAP}" ]; then
echo "Not running inside a snap context: SNAP not declared"
exit
fi
if [ ! -f "$1" ]; then
echo "Content snap command-chain for $1 not found: ensure slot is connected"
exit
fi
# emulate "exec $@" using "source"
# have to disable "unused variables" because checkshell doesn't know that $BASH_ARGV0 is $0
# shellcheck disable=SC2034 # Unused variables left for readability
BASH_ARGV0=$1
shift
# shellcheck source=/dev/null
source "$0"