8f0a81f559
This should make things run more nicely on systems like FreeBSD, where bash isn't installed in /bin.
10 lines
205 B
Bash
Executable File
10 lines
205 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# vim: set ft=sh sw=4 sts=4 et :
|
|
|
|
mkdir stripper_TEST_dir || exit 2
|
|
cd stripper_TEST_dir || exit 3
|
|
|
|
mkdir -p image/usr/bin || exit 5
|
|
cp ../stripper_TEST_binary image/usr/bin || exit 6
|
|
|