Commit 0cd6092f99113ac0c0b8b2d4efdeffd24e57890c
0 parents
Exists in
master
and in
1 other branch
Add initial Makefile
Showing
1 changed file
with
10 additions
and
0 deletions
Show diff stats
1 | +++ a/Makefile | ||
@@ -0,0 +1,10 @@ | @@ -0,0 +1,10 @@ | ||
1 | +WGET = wget | ||
2 | + | ||
3 | +all: | ||
4 | + @echo nothing yet | ||
5 | + | ||
6 | +update: | ||
7 | + $(WGET) -O Gemfile https://beta.softwarepublico.gov.br/gitlab/softwarepublico/gitlabhq/raw/master/Gemfile | ||
8 | + $(WGET) -O Gemfile.lock https://beta.softwarepublico.gov.br/gitlab/softwarepublico/gitlabhq/raw/master/Gemfile.lock | ||
9 | + git add Gemfile Gemfile.lock | ||
10 | + git commit Gemfile Gemfile.lock -m 'update Gemfile*' |