Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
heroku-buildpack-python
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Evili del Rio i Silvan
heroku-buildpack-python
Commits
c579162e
Commit
c579162e
authored
11 years ago
by
Aron Griffis
Browse files
Options
Downloads
Patches
Plain Diff
Use consistent syntax for declaring functions in utils
parent
566f7f45
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
bin/utils
+9
-9
9 additions, 9 deletions
bin/utils
with
9 additions
and
9 deletions
bin/utils
+
9
−
9
View file @
c579162e
...
@@ -14,39 +14,39 @@ cleanup() {
...
@@ -14,39 +14,39 @@ cleanup() {
}
}
# Buildpack Steps.
# Buildpack Steps.
function
puts-step
(){
puts-step()
{
echo "-----> $@"
echo "-----> $@"
}
}
# Buildpack Warnings.
# Buildpack Warnings.
function
puts-warn
(){
puts-warn()
{
echo " ! $@"
echo " ! $@"
}
}
# Usage: $ set-env key value
# Usage: $ set-env key value
function
set-env
(){
set-env()
{
echo "export $1=$2" >> $PROFILE_PATH
echo "export $1=$2" >> $PROFILE_PATH
}
}
# Usage: $ set-default-env key value
# Usage: $ set-default-env key value
function
set-default-env
(){
set-default-env()
{
echo "export $1=\${$1:-$2}" >> $PROFILE_PATH
echo "export $1=\${$1:-$2}" >> $PROFILE_PATH
}
}
# Usage: $ set-default-env key value
# Usage: $ set-default-env key value
function
un-set-env
(){
un-set-env()
{
echo "unset $1" >> $PROFILE_PATH
echo "unset $1" >> $PROFILE_PATH
}
}
# Does some serious copying.
# Does some serious copying.
function
deep-cp
(){
deep-cp()
{
find -H $1 -maxdepth 1 -name '.*' -a \( -type d -o -type f -o -type l \) -exec cp -a '{}' $2 \;
find -H $1 -maxdepth 1 -name '.*' -a \( -type d -o -type f -o -type l \) -exec cp -a '{}' $2 \;
cp -r $1/!(tmp) $2
cp -r $1/!(tmp) $2
# echo copying $1 to $2
# echo copying $1 to $2
}
}
# Does some serious moving.
# Does some serious moving.
function
deep-mv
(){
deep-mv()
{
deep-cp $1 $2
deep-cp $1 $2
rm -fr $1/!(tmp)
rm -fr $1/!(tmp)
...
@@ -54,7 +54,7 @@ function deep-mv (){
...
@@ -54,7 +54,7 @@ function deep-mv (){
}
}
# Does some serious deleting.
# Does some serious deleting.
function
deep-rm
(){
deep-rm()
{
rm -fr $1/!(tmp)
rm -fr $1/!(tmp)
find -H $1 -maxdepth 1 -name '.*' -a \( -type d -o -type f -o -type l \) -exec rm -fr '{}' \;
find -H $1 -maxdepth 1 -name '.*' -a \( -type d -o -type f -o -type l \) -exec rm -fr '{}' \;
}
}
...
@@ -77,4 +77,4 @@ sub-env() {
...
@@ -77,4 +77,4 @@ sub-env() {
$1
$1
)
)
}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment