From 95da7472b4cf51fd799c8726cc5a0e08b35dcf86 Mon Sep 17 00:00:00 2001 From: felix Date: Wed, 4 Sep 2019 15:20:04 +0200 Subject: [PATCH 1/2] [actions] remove bashrc before installing --- .github/workflows/shell.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/shell.yml b/.github/workflows/shell.yml index 0e6cc4d..4f6b110 100644 --- a/.github/workflows/shell.yml +++ b/.github/workflows/shell.yml @@ -10,4 +10,6 @@ jobs: steps: - uses: actions/checkout@v1 - name: Install dotfiles - run: ./install + run: | + rm .bashrc + ./install From 6e647fbe771512b895d27495c7cd9d6b774ded9e Mon Sep 17 00:00:00 2001 From: felix Date: Wed, 4 Sep 2019 16:14:04 +0200 Subject: [PATCH 2/2] [actions] fix relative bashrc --- .github/workflows/shell.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/shell.yml b/.github/workflows/shell.yml index 4f6b110..3932c4d 100644 --- a/.github/workflows/shell.yml +++ b/.github/workflows/shell.yml @@ -11,5 +11,5 @@ jobs: - uses: actions/checkout@v1 - name: Install dotfiles run: | - rm .bashrc + rm ~/.bashrc ./install