Created
December 26, 2014 06:01
-
-
Save henix/2d6648c189c8637fb28b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rel() { | |
[ ! -d 'target/universal/stage' ] && echo stage not exist! && return 1 | |
name=$(pwd | tr '/' '\n' | tail -n1) | |
timestamp=$(date +%Y%m%d_%H%M%S) | |
cp -r "target/universal/stage" "/apps/$name/stage-$timestamp" | |
ln -sTv "stage-$timestamp" "/apps/$name/stage" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment