This repository has been archived by the owner on Nov 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
init: use stack as a prefix instead of a suffix
Previously, files were named things like "Makefile.stack", and now they're named things like "stack.Makefile". This way, they'll all show up next to each other when the directory is listed, so it's a bit more convenient. Signed-off-by: suskin <[email protected]>
- Loading branch information
Showing
3 changed files
with
7 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,4 +9,4 @@ shift | |
set -e | ||
set -x | ||
|
||
make -f Makefile.stack ${COMMAND} "$@" | ||
make -f stack.Makefile ${COMMAND} "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,4 @@ | |
set -e | ||
set -x | ||
|
||
make -f Makefile.stack publish | ||
make -f stack.Makefile publish |