mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-25 08:28:34 +01:00
some master->main related fixes
This commit is contained in:
parent
8e3c44ee0f
commit
35a2a97e00
4 changed files with 4 additions and 4 deletions
2
Jenkinsfile
vendored
2
Jenkinsfile
vendored
|
@ -21,7 +21,7 @@ pipeline {
|
|||
|
||||
stage('Publish') {
|
||||
when {
|
||||
branch 'master'
|
||||
branch 'main'
|
||||
}
|
||||
steps {
|
||||
sh './gradlew publish --no-daemon'
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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()));
|
||||
|
||||
|
|
Loading…
Reference in a new issue