Triply escaped curly brackets
This commit is contained in:
parent
a95d8cb223
commit
a47975ec41
1 changed files with 2 additions and 2 deletions
|
@ -19,8 +19,8 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- name: Comparing tags of upstream and destination
|
- name: Comparing tags of upstream and destination
|
||||||
run: |
|
run: |
|
||||||
git ls-remote $upstream "refs/tags/$tags" | grep -v '{' | awk '{print $2}' | sed 's|refs/tags/||' > upstream_tags
|
git ls-remote $upstream "refs/tags/$tags" | grep -v '\\\{' | awk '\\\{print $2\\\}' | sed 's|refs/tags/||' > upstream_tags
|
||||||
git ls-remote $destination "refs/tags/$tags" | grep -v '{' | awk '{print $2}' | sed 's|refs/tags/||' > destination_tags
|
git ls-remote $destination "refs/tags/$tags" | grep -v '\\\{' | awk '\\\{print $2\\\}' | sed 's|refs/tags/||' > destination_tags
|
||||||
cat upstream_tags destination_tags | tr ' ' '\n' | sort | uniq -u | tr '\n '\t' > missing_tags
|
cat upstream_tags destination_tags | tr ' ' '\n' | sort | uniq -u | tr '\n '\t' > missing_tags
|
||||||
- name: Fetching missing tags
|
- name: Fetching missing tags
|
||||||
run: |
|
run: |
|
||||||
|
|
Loading…
Reference in a new issue