updating the rakefile to pull in the atom dark/light themes into the .atom directory

This commit is contained in:
Jon Rohan 2013-01-22 13:29:16 -08:00
parent e1e764418b
commit 28e6ca5fa7
3 changed files with 4 additions and 2 deletions

View File

@ -82,7 +82,8 @@ task "create-dot-atom" do
`mkdir "#{DOT_ATOM_PATH}"`
`cp "#{dot_atom_template_path}/atom.coffee" "#{DOT_ATOM_PATH}"`
`cp "#{dot_atom_template_path}/packages" "#{DOT_ATOM_PATH}"`
`cp -r "#{dot_atom_template_path}/themes" "#{DOT_ATOM_PATH}"`
`cp -r "#{ATOM_SRC_PATH}/themes" "#{DOT_ATOM_PATH}"`
`cp "#{ATOM_SRC_PATH}/vendor/themes/IR_Black.tmTheme" "#{DOT_ATOM_PATH}/themes"`
end
desc "Clone default bundles into vendor/bundles directory"

View File

@ -9,6 +9,7 @@ cp -R ../../src $INSTALLDIR
cp -R ../../static $INSTALLDIR
cp -R ../../vendor $INSTALLDIR
cp -R ../../bundles $INSTALLDIR
cp -R ../../themes $INSTALLDIR
mkdir -p $INSTALLDIR/native/v8_extensions
cp -t $INSTALLDIR/native/v8_extensions ../v8_extensions/*.js
coffee -c -o $INSTALLDIR/src/stdlib ../../src/stdlib/require.coffee

View File

@ -42,4 +42,4 @@ for CSON_FILE in $CSON_FILES; do
done;
# Copy non-coffee files into bundle
rsync --archive --recursive --exclude="src/**/*.coffee" --exclude="src/**/*.cson" src static vendor spec benchmark "$RESOUCES_PATH"
rsync --archive --recursive --exclude="src/**/*.coffee" --exclude="src/**/*.cson" src static vendor spec benchmark themes "$RESOUCES_PATH"