aboutsummaryrefslogtreecommitdiff
path: root/bash
diff options
context:
space:
mode:
Diffstat (limited to 'bash')
-rw-r--r--bash/fake-symlinks.sh8
1 files changed, 8 insertions, 0 deletions
diff --git a/bash/fake-symlinks.sh b/bash/fake-symlinks.sh
index b61e798..9361354 100644
--- a/bash/fake-symlinks.sh
+++ b/bash/fake-symlinks.sh
@@ -10,3 +10,11 @@ for repo in ${repos[@]}; do
cp "$DOTFILES/git/gitlab-ci.yml" "$DOTFILES/../$repo/.gitlab-ci.yml"
cp "$DOTFILES/git/default.nix" "$DOTFILES/../$repo/default.nix"
done
+
+
+SRHT_REPOS=("website" "mentat" "cement" "pouchdb-materialized-view")
+SRHT_REPOS_PATH="$HOME/dev/libre"
+
+for repo in ${SRHT_REPOS[@]}; do
+ cat $DOTFILES/templates/sr-ht-build.yaml | REPO="$repo" envsubst > "$SRHT_REPOS_PATH/$repo/.build.yml"
+done