-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added support to save keywords to resource_data
- Loading branch information
1 parent
8e669fc
commit b75153a
Showing
3 changed files
with
16 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#!/bin/bash | ||
# get current commit | ||
git log | grep -m 1 commit | ||
commit=`git log | grep -m 1 commit ` | ||
commitnick=${commit:7:10} | ||
commitnick='0.3' | ||
echo "updating version information in inline_keywords.yaml with latest git commit $commitnick" | ||
sed -ibk "s/version: .*/version: $commitnick/" inline_keywords.yaml | ||
rm inline_keywords.yamlbk | ||
cd .. | ||
rm inline_keywords*.rsp | ||
tar -cz -f inline_keywords-$commitnick.rsp -X inline_keywords/exclude.txt inline_keywords |
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,3 @@ | ||
*.git | ||
exclude.txt | ||
.* |
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