Changeset 47366 in vbox for trunk/src/VBox/Installer/darwin/VirtualBox/postflight
- Timestamp:
- Jul 24, 2013 10:16:08 AM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 87512
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/darwin/VirtualBox/postflight
r47362 r47366 15 15 CP="/bin/cp -f" 16 16 CPDIR="${CP} -R" 17 18 #19 # Correct the ownership of the directories in case there20 # was an existing installation.21 #22 chown -R root:admin /Applications/VirtualBox.app23 17 24 18 # … … 91 85 fi 92 86 87 # Check environment. 88 if [ "${INSTALLER_TEMP}x" == "x" ]; then 89 echo "Required environment variable INSTALLER_TEMP is missing. Aborting installation." 90 exit 1; 91 fi 92 93 93 # Restore previously installed Extension Packs (if any) 94 94 if [ -d "${INSTALLER_TEMP}/ExtensionPacks" ]; then … … 97 97 fi 98 98 99 # 100 # Correct the ownership of the directories in case there 101 # was an existing installation. 102 # 103 chown -R root:admin /Applications/VirtualBox.app 104 99 105 exit 0;
Note:
See TracChangeset
for help on using the changeset viewer.