1
0
mirror of https://github.com/rancher/os-kernel.git synced 2025-09-13 21:40:11 +00:00

Make source dir based on git tag

This commit is contained in:
Darren Shepherd
2016-07-10 05:07:19 +00:00
parent 65203f5fe5
commit 2206ed6c9e
9 changed files with 65 additions and 5 deletions

11
scripts/entry Executable file
View File

@@ -0,0 +1,11 @@
#!/bin/bash
set -e
trap "rm -f $HOME/.bash_history" exit
mkdir -p bin
if [ -e ./scripts/$1 ]; then
./scripts/"$@"
else
"$@"
fi