diff options
author | EuAndreh <eu@euandre.org> | 2018-08-11 15:04:32 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2018-08-11 15:04:32 -0300 |
commit | a1ceb16878255ac494d1e39bdc7788545bc56286 (patch) | |
tree | ba50e1826fd0a63acb33fb06bad462c94ea967f0 /bash | |
parent | Unsubscribe from mailing lists (diff) | |
download | dotfiles-a1ceb16878255ac494d1e39bdc7788545bc56286.tar.gz dotfiles-a1ceb16878255ac494d1e39bdc7788545bc56286.tar.xz |
Add default.nix to default clj projects fake-symlinks.sh
Diffstat (limited to 'bash')
-rw-r--r-- | bash/fake-symlinks.sh | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/bash/fake-symlinks.sh b/bash/fake-symlinks.sh index 8acef12..b61e798 100644 --- a/bash/fake-symlinks.sh +++ b/bash/fake-symlinks.sh @@ -4,5 +4,9 @@ if [[ -n "$GITHUB_TOKEN" ]]; then cat $DOTFILES/git/gitconfig.ini | envsubst > ~/.gitconfig fi -cp $DOTFILES/gitlab-ci.yml $DOTFILES/../org.euandreh.misc/.gitlab-ci.yml -cp $DOTFILES/gitlab-ci.yml $DOTFILES/../org.euandreh.http/.gitlab-ci.yml +repos=("org.euandreh.misc" "org.euandreh.http") + +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 |