diff --git a/Rakefile b/Rakefile index 2c5375001..ee78786b2 100644 --- a/Rakefile +++ b/Rakefile @@ -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" diff --git a/native/linux/install-32.sh b/native/linux/install-32.sh index 44506b017..23888b098 100755 --- a/native/linux/install-32.sh +++ b/native/linux/install-32.sh @@ -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 diff --git a/script/copy-files-to-bundle b/script/copy-files-to-bundle index 379f5837c..c8ab8dd4f 100755 --- a/script/copy-files-to-bundle +++ b/script/copy-files-to-bundle @@ -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"