mirror of
https://github.com/webinstall/webi-installers.git
synced 2026-08-23 22:16:48 +00:00
chore: remove junk files
This commit is contained in:
@@ -1,19 +0,0 @@
|
||||
#!/bin/sh
|
||||
set -e
|
||||
set -u
|
||||
|
||||
# For installing from the extracted package tmp directory
|
||||
pkg_install() {
|
||||
(
|
||||
cd "$WEBI_TMP"
|
||||
|
||||
if command -v rsync 2> /dev/null | grep -q rsync; then
|
||||
rsync -Krl ./xmpl*/ "$pkg_src/" 2> /dev/null
|
||||
else
|
||||
cp -Hr ./xmpl*/* "$pkg_src/" 2> /dev/null
|
||||
cp -Hr ./xmpl*/.* "$pkg_src/" 2> /dev/null
|
||||
fi
|
||||
rm -rf ./xmpl*
|
||||
|
||||
)
|
||||
}
|
||||
@@ -1,27 +0,0 @@
|
||||
@echo off
|
||||
pushd "%userprofile%" || goto :error
|
||||
IF NOT EXIST .local (
|
||||
mkdir .local || goto :error
|
||||
)
|
||||
IF NOT EXIST .local\bin (
|
||||
mkdir .local\bin || goto :error
|
||||
)
|
||||
IF NOT EXIST .local\opt (
|
||||
mkdir .local\opt || goto :error
|
||||
)
|
||||
|
||||
echo Downloading and installing %1
|
||||
powershell $ProgressPreference = 'SilentlyContinue'; Invoke-WebRequest https://webinstall.dev/packages/%1/install.ps1 -OutFile %1-webinstall.bat || goto :error
|
||||
|
||||
rem TODO only add if it's not in there already
|
||||
PATH .local\bin;%PATH%
|
||||
|
||||
call %1-webinstall.bat || goto :error
|
||||
del %1-webinstall.bat || goto :error
|
||||
popd
|
||||
|
||||
goto :EOF
|
||||
|
||||
:error
|
||||
echo Failed with error #%errorlevel%.
|
||||
exit /b %errorlevel%
|
||||
@@ -1 +0,0 @@
|
||||
powershell -ExecutionPolicy Bypass .\.local\bin\webi-pwsh.ps1 %1
|
||||
Reference in New Issue
Block a user