some master->main related fixes

This commit is contained in:
Ell 2020-11-07 14:32:06 +01:00
parent 8e3c44ee0f
commit 35a2a97e00
4 changed files with 4 additions and 4 deletions

2
Jenkinsfile vendored
View File

@ -21,7 +21,7 @@ pipeline {
stage('Publish') {
when {
branch 'master'
branch 'main'
}
steps {
sh './gradlew publish --no-daemon'

View File

@ -5,4 +5,4 @@ For more information, visit the main CurseForge Page by [clicking here](http://m
Jenkins: [Click here](https://ci.ellpeck.de/blue/organizations/jenkins/ActuallyAdditions/)
Maven: [Click here](https://maven.ellpeck.de/de/ellpeck/actuallyadditions/)
![](https://raw.githubusercontent.com/Ellpeck/ActuallyAdditions/master/pics/logo.png)
![](https://raw.githubusercontent.com/Ellpeck/ActuallyAdditions/main/pics/logo.png)

View File

@ -18,7 +18,7 @@ public class ThreadSpecialFetcher extends Thread {
public void run() {
ActuallyAdditions.LOGGER.info("Fetching Special People Stuff...");
try {
URL url = new URL("https://raw.githubusercontent.com/Ellpeck/ActuallyAdditions/master/specialPeopleStuff.properties");
URL url = new URL("https://raw.githubusercontent.com/Ellpeck/ActuallyAdditions/main/specialPeopleStuff.properties");
Properties specialProperties = new Properties();
specialProperties.load(new InputStreamReader(url.openStream()));
SpecialRenderInit.parse(specialProperties);

View File

@ -20,7 +20,7 @@ public class ThreadUpdateChecker extends Thread {
public void run() {
ActuallyAdditions.LOGGER.info("Starting Update Check...");
try {
URL newestURL = new URL("https://raw.githubusercontent.com/Ellpeck/ActuallyAdditions/master/update/updateVersions.properties");
URL newestURL = new URL("https://raw.githubusercontent.com/Ellpeck/ActuallyAdditions/main/update/updateVersions.properties");
Properties updateProperties = new Properties();
updateProperties.load(new InputStreamReader(newestURL.openStream()));