@@ -8,13 +8,13 @@ if (os_type = os_windows) {
88 if (!directory_exists (songs_directory)) execute_program (" Xcopy" , @' /E /I "' + filename_dir (bundled_songs_directory) + @' " "' + filename_dir (songs_directory) + @' "' , true )
99 if (!directory_exists (pattern_directory)) execute_program (" Xcopy" , @' /E /I "' + filename_dir (bundled_pattern_directory) + @' " "' + filename_dir (pattern_directory) + @' "' , true )
1010} if (os_type = os_macosx) {
11- if (!directory_exists (data_directory)) execute_program (" cp" , @' -fR "' + filename_dir (bundled_data_directory) + @' " "' + filename_dir (data_directory) + @' "' , true )
11+ if (!directory_exists (data_directory)) execute_program (" cp" , @' -fR "' + filename_dir (bundled_data_directory) + @' . " "' + filename_dir (data_directory) + @' "' , true )
1212 // if (!directory_exists(songs_directory)) directory_create(songs_directory)
1313 // if (!directory_exists(pattern_directory)) directory_create(pattern_directory)
1414} if (os_type = os_linux) {
15- if (!directory_exists (data_directory)) execute_program (" cp" , @' -fR "' + filename_dir (bundled_data_directory) + @' " "' + filename_dir (data_directory) + @' "' , true )
16- if (!directory_exists (songs_directory)) execute_program (" cp" , @' -fR "' + filename_dir (bundled_songs_directory) + @' " "' + filename_dir (songs_directory) + @' "' , true )
17- if (!directory_exists (pattern_directory)) execute_program (" cp" , @' -fR "' + filename_dir (bundled_pattern_directory) + @' " "' + filename_dir (pattern_directory) + @' "' , true )
15+ if (!directory_exists (data_directory)) execute_program (" cp" , @' -fR "' + filename_dir (bundled_data_directory) + @' . " "' + filename_dir (data_directory) + @' "' , true )
16+ if (!directory_exists (songs_directory)) execute_program (" cp" , @' -fR "' + filename_dir (bundled_songs_directory) + @' . " "' + filename_dir (songs_directory) + @' "' , true )
17+ if (!directory_exists (pattern_directory)) execute_program (" cp" , @' -fR "' + filename_dir (bundled_pattern_directory) + @' . " "' + filename_dir (pattern_directory) + @' "' , true )
1818} if (os_type = os_ios) {
1919 if (!directory_exists (data_directory)) directory_copy (bundled_data_directory, data_directory);
2020 if (!directory_exists (songs_directory)) directory_copy (bundled_songs_directory, songs_directory);
0 commit comments