-
-
Notifications
You must be signed in to change notification settings - Fork 145
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow run-script output to have comment-lines and blank lines.
This makes the run-script output a little more lenient, so one could output blank lines or comments to make things more readable for debugging.
- Loading branch information
Showing
3 changed files
with
88 additions
and
6 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
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 |
---|---|---|
@@ -0,0 +1,38 @@ | ||
#! /bin/sh -e | ||
# tup - A file-based build system | ||
# | ||
# Copyright (C) 2024 Mike Shal <[email protected]> | ||
# | ||
# This program is free software; you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License version 2 as | ||
# published by the Free Software Foundation. | ||
# | ||
# This program is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU General Public License along | ||
# with this program; if not, write to the Free Software Foundation, Inc., | ||
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | ||
|
||
# Make sure run script can ignore blank lines. | ||
|
||
. ./tup.sh | ||
check_no_windows run-script | ||
|
||
cat > gen.sh << HERE | ||
#! /usr/bin/env bash | ||
for i in *; do | ||
echo ": |> echo \$i |>" | ||
echo "" | ||
done | ||
HERE | ||
chmod +x gen.sh | ||
|
||
cat > Tupfile << HERE | ||
run ./gen.sh | ||
HERE | ||
update | ||
|
||
eotup |
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 |
---|---|---|
@@ -0,0 +1,38 @@ | ||
#! /bin/sh -e | ||
# tup - A file-based build system | ||
# | ||
# Copyright (C) 2024 Mike Shal <[email protected]> | ||
# | ||
# This program is free software; you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License version 2 as | ||
# published by the Free Software Foundation. | ||
# | ||
# This program is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU General Public License along | ||
# with this program; if not, write to the Free Software Foundation, Inc., | ||
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | ||
|
||
# Make sure run script can ignore comments. | ||
|
||
. ./tup.sh | ||
check_no_windows run-script | ||
|
||
cat > gen.sh << HERE | ||
#! /usr/bin/env bash | ||
for i in *; do | ||
echo "# basic echo rule" | ||
echo ": |> echo \$i |>" | ||
done | ||
HERE | ||
chmod +x gen.sh | ||
|
||
cat > Tupfile << HERE | ||
run ./gen.sh | ||
HERE | ||
update | ||
|
||
eotup |