Skip to content

Commit

Permalink
Fix setting read-only permissions on the files. gunzip deletes the ar…
Browse files Browse the repository at this point in the history
…chive.
  • Loading branch information
eliotmiranda committed Jun 27, 2016
1 parent 39973ab commit e2980c7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions build.macos32x86/common/Makefile.sources
Expand Up @@ -12,13 +12,13 @@ $(SOURCESDIR):
$(SOURCESDIR)/PharoV50.sources:
curl http://files.pharo.org/get-files/50/sources.zip -o $@.zip
(cd $(SOURCESDIR); unzip $(@F).zip)
rm $@.zip
test -f $@.zip && rm $@.zip
chmod 444 $@

$(SOURCESDIR)/SqueakV50.sources \
$(SOURCESDIR)/SqueakV46.sources \
$(SOURCESDIR)/SqueakV41.sources:
curl http://ftp.squeak.org/sources_files/$(@F).gz -o $@.gz
(cd $(SOURCESDIR); gunzip $(@F).gz)
rm $@.gz
test -f $@.gz && rm $@.gz
chmod 444 $@
4 changes: 2 additions & 2 deletions build.macos64x64/common/Makefile.sources
Expand Up @@ -12,13 +12,13 @@ $(SOURCESDIR):
$(SOURCESDIR)/PharoV50.sources:
curl http://files.pharo.org/get-files/50/sources.zip -o $@.zip
(cd $(SOURCESDIR); unzip $(@F).zip)
rm $@.zip
test -f $@.zip && rm $@.zip
chmod 444 $@

$(SOURCESDIR)/SqueakV50.sources \
$(SOURCESDIR)/SqueakV46.sources \
$(SOURCESDIR)/SqueakV41.sources:
curl http://ftp.squeak.org/sources_files/$(@F).gz -o $@.gz
(cd $(SOURCESDIR); gunzip $(@F).gz)
rm $@.gz
test -f $@.gz && rm $@.gz
chmod 444 $@

0 comments on commit e2980c7

Please sign in to comment.