Last change
on this file since 47362 was 47362, checked in by vboxsync, 11 years ago |
OS X installer: keep previously installed extension packs on upgrade.
|
File size:
872 bytes
|
Line | |
---|
1 | #!/bin/sh
|
---|
2 |
|
---|
3 | #
|
---|
4 | # Copyright (C) 2007-2013 Oracle Corporation
|
---|
5 | #
|
---|
6 | # This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
7 | # available from http://www.virtualbox.org. This file is free software;
|
---|
8 | # you can redistribute it and/or modify it under the terms of the GNU
|
---|
9 | # General Public License (GPL) as published by the Free Software
|
---|
10 | # Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
11 | # VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
12 | # hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
13 | #
|
---|
14 |
|
---|
15 | # Backup previously installed Extension Packs before
|
---|
16 | # installation process will completely remove previously installed
|
---|
17 | # VirtualBox distribution.
|
---|
18 | EXTPACKS_ROOT_PATH="/Applications/VirtualBox.app/Contents/MacOS/ExtensionPacks"
|
---|
19 | if [ -d "${EXTPACKS_ROOT_PATH}" ]; then
|
---|
20 | cp -r "${EXTPACKS_ROOT_PATH}" "${INSTALLER_TEMP}"
|
---|
21 | fi
|
---|
22 |
|
---|
23 | exit 0;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.