Skip to content

Commit

Permalink
Merge pull request #129 from dmtucker/master-main
Browse files Browse the repository at this point in the history
Rename the master branch
  • Loading branch information
dmtucker committed Jul 5, 2024
2 parents 46fd0d1 + 5219bf8 commit 94e4fdd
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publication.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Publication
on:
push:
branches:
- master
- main
jobs:
deploy:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ docker run -it dmtucker/config:latest

Install:
``` sh
wget -O- 'https://raw.githubusercontent.com/dmtucker/config/master/install.bash' | bash
wget -O- 'https://raw.githubusercontent.com/dmtucker/config/main/install.bash' | bash
```

Uninstall:
Expand Down
2 changes: 1 addition & 1 deletion config/bashrc.bash
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ refresh_config () {
echo "$usage" 1>&2
return 1
fi
url='https://raw.githubusercontent.com/dmtucker/config/master/install.bash'
url='https://raw.githubusercontent.com/dmtucker/config/main/install.bash'
wget -O- "$url" | "$BASH"
}

Expand Down
2 changes: 1 addition & 1 deletion install.bash
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ config_repo="$1"
exit 1
}
config_archive="$(mktemp)"
wget --output-document "$config_archive" 'https://github.com/dmtucker/config/archive/master.tar.gz'
wget --output-document "$config_archive" 'https://github.com/dmtucker/config/archive/main.tar.gz'
}
config_repo="$(mktemp -d)"
tar -vxzf "$config_archive" -C "$config_repo" --strip-components=1
Expand Down

0 comments on commit 94e4fdd

Please sign in to comment.