Skip to content

Commit

Permalink
Merge pull request #11 from andred/master
Browse files Browse the repository at this point in the history
build: fix mkfs.ext4 invocation
  • Loading branch information
josephlr authored Oct 23, 2017
2 parents e4c4d09 + 38e5d63 commit 1423268
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ clean:
.PHONY: test-setup test-teardown
test-setup: root
dd if=/dev/zero of=$(IMAGE) bs=1M count=20
mkfs.ext4 -b 4096 -O encrypt $(IMAGE) -F
mkfs.ext4 -b 4096 -O encrypt -F $(IMAGE)
mkdir -p $(MOUNT)
mount -o rw,loop,user $(IMAGE) $(MOUNT)
chmod +777 $(MOUNT)
Expand Down

0 comments on commit 1423268

Please sign in to comment.