mirror of
https://github.com/kaboomserver/buildpack.git
synced 2024-11-19 05:39:59 +00:00
6 lines
128 B
Bash
Executable file
6 lines
128 B
Bash
Executable file
#!/bin/bash
|
|
BIN_DIR="$(cd "$(dirname "$0")" && pwd)"
|
|
BUILD_DIR=$1
|
|
|
|
mkdir -p $BUILD_DIR/.bin/
|
|
mv $BIN_DIR/start $BUILD_DIR/.bin/
|