8 lines
47 B
Bash
8 lines
47 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
pushd $(dirname $0)
|
||
|
|
||
|
popd
|