Skip to content

Commit

Permalink
bug fix in apt install
Browse files Browse the repository at this point in the history
  • Loading branch information
Ames committed Jun 26, 2018
1 parent ed0bfd4 commit 9282f40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -7,7 +7,7 @@
all : makestamps/apt makestamps/yum makestamps/pip buttersink/version.py

makestamps/apt : apt.txt | makestamps
if [ -f "/etc/debian_version" ]; then sudo apt-get install $$(cat $<) touch $@ ; fi
if [ -f "/etc/debian_version" ]; then sudo apt-get install -y $$(cat $<); touch $@ ; fi

makestamps/yum : yum.txt | makestamps
if [ -f "/etc/redhat-release" ]; then sudo yum install -y $$(cat $<); touch $@ ; fi
Expand Down

0 comments on commit 9282f40

Please sign in to comment.