Abstract Avatars for All Creative Profile UseMatt Houserhttps://www.figma.com/community/file/1249154526125777853https://creativecommons.org/licenses/by/4.0/Remix of “Abstract Avatars for All Creative Profile Use” (https://www.figma.com/community/file/1249154526125777853) by “Matt Houser”, licensed under “CC BY 4.0” (https://creativecommons.org/licenses/by/4.0/)nanamiNovember 30, 2006 at 1:05 PM#Commandline paramaters for buildCan i somehow use commandline parameters for build installer to set some variables?
Abstract Avatars for All Creative Profile UseMatt Houserhttps://www.figma.com/community/file/1249154526125777853https://creativecommons.org/licenses/by/4.0/Remix of “Abstract Avatars for All Creative Profile Use” (https://www.figma.com/community/file/1249154526125777853) by “Matt Houser”, licensed under “CC BY 4.0” (https://creativecommons.org/licenses/by/4.0/)LaslieNovember 30, 2006 at 1:09 PM#write a text file for example temp.txt wich contains: !define DEF 1 and include your script file !include temp.txt
Abstract Avatars for All Creative Profile UseMatt Houserhttps://www.figma.com/community/file/1249154526125777853https://creativecommons.org/licenses/by/4.0/Remix of “Abstract Avatars for All Creative Profile Use” (https://www.figma.com/community/file/1249154526125777853) by “Matt Houser”, licensed under “CC BY 4.0” (https://creativecommons.org/licenses/by/4.0/)kichikNovember 30, 2006 at 4:22 PM#Or pass the /D switch to makensis.makensis.exe /Dsomething=1 /Dboo script.nsi
Abstract Avatars for All Creative Profile UseMatt Houserhttps://www.figma.com/community/file/1249154526125777853https://creativecommons.org/licenses/by/4.0/Remix of “Abstract Avatars for All Creative Profile Use” (https://www.figma.com/community/file/1249154526125777853) by “Matt Houser”, licensed under “CC BY 4.0” (https://creativecommons.org/licenses/by/4.0/)MrEyesDecember 1, 2006 at 8:55 AM#Heres an example of the command line I use to build an installer via a batch file makensis /DBUILDFLAG=%C% /DVERSION=%V% /DREVISION=%R% "InstallerScript.nsi" Within the script the /D values are referenced with: ${BUILDFLAG} ${VERSION} ${REVISION}