mirror of
https://github.com/kennethreitz/heroku-buildpack-python.git
synced 2026-06-05 23:10:16 +00:00
test
This commit is contained in:
@@ -1,3 +1,5 @@
|
||||
shopt -s extglob
|
||||
|
||||
# Syntax sugar.
|
||||
indent() {
|
||||
RE="s/^/ /"
|
||||
@@ -37,7 +39,7 @@ function set-default-env (){
|
||||
# Does some serious copying.
|
||||
function deep-cp (){
|
||||
find -H $1 -maxdepth 1 -name '.*' -a \( -type d -o -type f -o -type l \) -exec cp -a '{}' $2 \;
|
||||
cp -r $1/* $2
|
||||
cp -r $1/!(tmp) $2
|
||||
echo copying $1 to $2
|
||||
}
|
||||
|
||||
@@ -45,6 +47,6 @@ function deep-cp (){
|
||||
function deep-mv (){
|
||||
deep-cp $1 $2
|
||||
|
||||
rm -fr $1/*
|
||||
rm -fr $1/!(tmp)
|
||||
find -H $1 -maxdepth 1 -name '.*' -a \( -type d -o -type f -o -type l \) -exec rm -fr '{}' \;
|
||||
}
|
||||
Reference in New Issue
Block a user