updated buildInstallomatorScript to set DEBUG to 0 in pkg

This commit is contained in:
Armin Briegel
2021-04-13 10:41:11 +02:00
parent b83c8d2904
commit 76b4f579e7
5 changed files with 9 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
## v0.5 - 2021-03-28 ## v0.5 - 2021-04-13
- Major update and now with help from @Theile and @Isaac - Major update and now with help from @Theile and @Isaac
- Added additional `BLOCKING_PROCESS_ACTION` handlings - Added additional `BLOCKING_PROCESS_ACTION` handlings

BIN
Installomator-0.5.pkg Normal file

Binary file not shown.

View File

@@ -11,7 +11,7 @@ label="" # if no label is sent to the script, this will be used
# and help from Søren Theilgaard (theilgaard.dk) # and help from Søren Theilgaard (theilgaard.dk)
VERSION='0.5.0' VERSION='0.5.0'
VERSIONDATE='2021-03-28' VERSIONDATE='2021-04-13'
export PATH=/usr/bin:/bin:/usr/sbin:/sbin export PATH=/usr/bin:/bin:/usr/sbin:/sbin

View File

@@ -36,7 +36,6 @@ camostudio
camtasia camtasia
citrixworkspace citrixworkspace
clevershare2 clevershare2
clickshare
code42 code42
coderunner coderunner
cormorant cormorant
@@ -131,6 +130,7 @@ microsoftautoupdate
microsoftcompanyportal microsoftcompanyportal
microsoftdefenderatp microsoftdefenderatp
microsoftedge microsoftedge
microsoftedgeconsumerstable
microsoftedgeenterprisestable microsoftedgeenterprisestable
microsoftexcel microsoftexcel
microsoftlicenseremovaltool microsoftlicenseremovaltool
@@ -150,7 +150,7 @@ microsoftyammer
miro miro
musescore musescore
netnewswire netnewswire
nextcloud) nextcloud
nomad nomad
nomadlogin nomadlogin
notion notion
@@ -180,6 +180,7 @@ prism9
privileges privileges
proctortrack proctortrack
promiseutilityr promiseutilityr
pycharmce
pymol pymol
r r
ramboxce ramboxce
@@ -235,6 +236,7 @@ tunnelbear
tunnelblick tunnelblick
umbrellaroamingclient umbrellaroamingclient
universaltypeclient universaltypeclient
universaltypeclient
vagrant vagrant
vanilla vanilla
veracrypt veracrypt

View File

@@ -82,6 +82,9 @@ fi
cp ${scriptfolder}/Installomator.sh ${payloadfolder} cp ${scriptfolder}/Installomator.sh ${payloadfolder}
chmod 755 ${payloadfolder}/Installomator.sh chmod 755 ${payloadfolder}/Installomator.sh
# set the DEBUG variable to 0
sed -i '' -e 's/^DEBUG=1$/DEBUG=0/g' ${payloadfolder}/Installomator.sh
# build the component package # build the component package
pkgpath="${scriptfolder}/${pkgname}.pkg" pkgpath="${scriptfolder}/${pkgname}.pkg"