diff --git a/.dockerignore b/.dockerignore index 630d19a..6db8c35 100644 --- a/.dockerignore +++ b/.dockerignore @@ -4,4 +4,3 @@ dist .kernel-ccache .dl .idea -.git diff --git a/scripts/entry b/scripts/entry index 931adda..b4a7c1a 100755 --- a/scripts/entry +++ b/scripts/entry @@ -1,11 +1,11 @@ #!/bin/bash set -e -trap "rm -f $HOME/.bash_history" exit - mkdir -p bin if [ -e ./scripts/$1 ]; then ./scripts/"$@" else "$@" fi + +rm -f $HOME/.bash_history diff --git a/scripts/release b/scripts/release new file mode 100755 index 0000000..7af0df3 --- /dev/null +++ b/scripts/release @@ -0,0 +1,3 @@ +#!/bin/bash + +exec $(dirname $0)/ci