-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow templates registered into other workspace paths
This commit allows workspace path variables to be replaced in destination paths for templates that are registered in objects. This allows a template to be rendered into the shared directory of a workspace, as an example.
- Loading branch information
1 parent
61acc6c
commit 2a6f7e8
Showing
4 changed files
with
36 additions
and
3 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
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
12 changes: 12 additions & 0 deletions
12
var/ramble/repos/builtin.mock/applications/template/script.sh
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,12 @@ | ||
#!/bin/bash | ||
|
||
# This is a test script that should end up in a rendered location | ||
|
||
if [ ! -f file_list ]; then | ||
exit 1 | ||
fi | ||
|
||
for FILE in `cat file_list` | ||
do | ||
wc -l $FILE | ||
done |