diff --git a/misc/nightly/plugins.sh b/misc/nightly/plugins.sh index dcd69ae191..f0d7a661cb 100755 --- a/misc/nightly/plugins.sh +++ b/misc/nightly/plugins.sh @@ -35,11 +35,11 @@ mkdir -p outfinalnewARM64/Plugins cd plugins VERSION_7Z=24.08 -curl -o arclite/7z/7z-${VERSION_7Z}.zip https://github.com/FarGroup/thirdparty/blob/master/7z-${VERSION_7Z}.zip +curl -o arclite/7z/7z-${VERSION_7Z}.zip https://raw.githubusercontent.com/FarGroup/thirdparty/master/7z-${VERSION_7Z}.zip unzip arclite/7z/7z-${VERSION_7Z}.zip -d arclite/7z/${VERSION_7Z} VERSION_LUASDK=20240301 -curl -o luamacro/luasdk/LuaSDK-${VERSION_LUASDK}.zip https://github.com/FarGroup/thirdparty/blob/master/LuaSDK-${VERSION_LUASDK}.zip +curl -o luamacro/luasdk/LuaSDK-${VERSION_LUASDK}.zip https://raw.githubusercontent.com/FarGroup/thirdparty/master/LuaSDK-${VERSION_LUASDK}.zip unzip luamacro/luasdk/LuaSDK-${VERSION_LUASDK}.zip -d luamacro/luasdk/${VERSION_LUASDK} MASKS="*.dll *.hlf *.lng *.farconfig *.lua *.map *.pdb" diff --git a/plugins/arclite/arclite.vcxproj b/plugins/arclite/arclite.vcxproj index 7ebe4d7f9a..9cb75aead4 100644 --- a/plugins/arclite/arclite.vcxproj +++ b/plugins/arclite/arclite.vcxproj @@ -29,7 +29,7 @@ Downloading 7-Zip binaries - if not exist $(Release7ZDll) powershell -c "Invoke-WebRequest -Uri 'https://github.com/FarGroup/thirdparty/blob/master/7z-$(Version7Z).zip' -OutFile '7z\7z-$(Version7Z).zip'; Expand-Archive 7z\7z-$(Version7Z).zip -DestinationPath 7z\$(Version7Z)" + if not exist $(Release7ZDll) powershell -c "Invoke-WebRequest -Uri 'https://raw.githubusercontent.com/FarGroup/thirdparty/master/7z-$(Version7Z).zip' -OutFile '7z\7z-$(Version7Z).zip'; Expand-Archive 7z\7z-$(Version7Z).zip -DestinationPath 7z\$(Version7Z)" diff --git a/plugins/arclite/makefile_gcc b/plugins/arclite/makefile_gcc index 00701e26a9..33e9a5c5b2 100644 --- a/plugins/arclite/makefile_gcc +++ b/plugins/arclite/makefile_gcc @@ -54,7 +54,7 @@ depfile: $(7ZDLL): @echo Downloading 7-Zip binaries - curl -o 7z/7z-$(VERSION_7Z).zip https://github.com/FarGroup/thirdparty/blob/master/7z-$(VERSION_7Z).zip && unzip 7z/7z-$(VERSION_7Z).zip -d 7z/$(VERSION_7Z) + curl -o 7z/7z-$(VERSION_7Z).zip https://raw.githubusercontent.com/FarGroup/thirdparty/master/7z-$(VERSION_7Z).zip && unzip 7z/7z-$(VERSION_7Z).zip -d 7z/$(VERSION_7Z) clean: $(MAKE) -f makefile_gcc $(MK_FLAGS) clean BUILD=1 diff --git a/plugins/arclite/makefile_vc b/plugins/arclite/makefile_vc index 50aa4b5f84..b3a044c268 100644 --- a/plugins/arclite/makefile_vc +++ b/plugins/arclite/makefile_vc @@ -53,7 +53,7 @@ depfile: $(7ZDLL): @echo Downloading 7-Zip binaries - powershell -c "Invoke-WebRequest -Uri 'https://github.com/FarGroup/thirdparty/blob/master/7z-$(VERSION_7Z).zip' -OutFile '7z\7z-$(VERSION_7Z).zip'; Expand-Archive 7z\7z-$(VERSION_7Z).zip -DestinationPath 7z\$(VERSION_7Z)" + powershell -c "Invoke-WebRequest -Uri 'https://raw.githubusercontent.com/FarGroup/thirdparty/master/7z-$(VERSION_7Z).zip' -OutFile '7z\7z-$(VERSION_7Z).zip'; Expand-Archive 7z\7z-$(VERSION_7Z).zip -DestinationPath 7z\$(VERSION_7Z)" clean: diff --git a/plugins/luamacro/makefile_lib_gcc b/plugins/luamacro/makefile_lib_gcc index 5584bf461f..3d936aaa55 100644 --- a/plugins/luamacro/makefile_lib_gcc +++ b/plugins/luamacro/makefile_lib_gcc @@ -85,7 +85,7 @@ luasdk/$(VERSION_LUASDK)/$(BITPREFIX)$(DIRBIT)/lua51.lib: luasdk/$(VERSION_LUASD luasdk/$(VERSION_LUASDK)/$(BITPREFIX)$(DIRBIT)/lpeg.dll: luasdk/$(VERSION_LUASDK)/$(BITPREFIX)$(DIRBIT)/lua51.dll luasdk/$(VERSION_LUASDK)/$(BITPREFIX)$(DIRBIT)/lua51.dll: @echo Downloading 7-Zip binaries - curl -o luasdk/LuaSDK-$(VERSION_LUASDK).zip https://github.com/FarGroup/thirdparty/blob/master/LuaSDK-$(VERSION_LUASDK).zip && unzip luasdk/LuaSDK-$(VERSION_LUASDK).zip -d luasdk/$(VERSION_LUASDK) + curl -o luasdk/LuaSDK-$(VERSION_LUASDK).zip https://raw.githubusercontent.com/FarGroup/thirdparty/master/LuaSDK-$(VERSION_LUASDK).zip && unzip luasdk/LuaSDK-$(VERSION_LUASDK).zip -d luasdk/$(VERSION_LUASDK) clean:: @$(RM) $(DLLDIR)/lua*.* $(OBJS) $(DEPS) diff --git a/plugins/luamacro/makefile_lib_vc b/plugins/luamacro/makefile_lib_vc index 037f314db8..7b39f4417e 100644 --- a/plugins/luamacro/makefile_lib_vc +++ b/plugins/luamacro/makefile_lib_vc @@ -65,4 +65,4 @@ luasdk\$(VERSION_LUASDK)\$(BITPREFIX)$(DIRBIT)\lua51.lib: luasdk\$(VERSION_LUASD luasdk\$(VERSION_LUASDK)\$(BITPREFIX)$(DIRBIT)\lpeg.dll: luasdk\$(VERSION_LUASDK)\$(BITPREFIX)$(DIRBIT)\lua51.dll luasdk\$(VERSION_LUASDK)\$(BITPREFIX)$(DIRBIT)\lua51.dll: @echo Downloading Lua binaries - powershell -c "Invoke-WebRequest -Uri 'https://github.com/FarGroup/thirdparty/blob/master/LuaSDK-$(VERSION_LUASDK).zip' -OutFile 'luasdk\LuaSDK-$(VERSION_LUASDK).zip'; Expand-Archive luasdk\LuaSDK-$(VERSION_LUASDK).zip -DestinationPath luasdk\$(VERSION_LUASDK) + powershell -c "Invoke-WebRequest -Uri 'https://raw.githubusercontent.com/FarGroup/thirdparty/master/LuaSDK-$(VERSION_LUASDK).zip' -OutFile 'luasdk\LuaSDK-$(VERSION_LUASDK).zip'; Expand-Archive luasdk\LuaSDK-$(VERSION_LUASDK).zip -DestinationPath luasdk\$(VERSION_LUASDK)