This repository has been archived by the owner on Sep 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 618
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c1aefaf
commit 57fb18b
Showing
2 changed files
with
17 additions
and
12 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#~/bin/bash | ||
|
||
# clean old files | ||
rm -rf installer/linux/staging | ||
mkdir -p installer/linux/staging | ||
|
||
# copy binaries to staging | ||
cp -r out/Release/lib installer/linux/staging | ||
cp -r out/Release/locales installer/linux/staging | ||
cp -r out/Release/brackets.ico installer/linux/staging | ||
cp -r out/Release/Brackets installer/linux/staging | ||
cp -r out/Release/cef.pak installer/linux/staging | ||
cp -r out/Release/devtools_resources.pak installer/linux/staging | ||
|
||
# copy www and samples files to staging | ||
cp -r ../brackets/src installer/linux/staging/www | ||
cp -r ../brackets/samples installer/linux/staging/samples |