Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion preparehelper/src/main/java/helper/PrepareRelease.java
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public static void main(String[] args) throws Exception {
public static void executePythonScript(String... args) throws Exception {
List<String> command = new ArrayList<>();
command.add("python");
// Add all provided argumentsto the command list
// Add all provided arguments to the command list
command.addAll(Arrays.asList(args));
command.add("..");

Expand Down
6 changes: 3 additions & 3 deletions scripts/preparerelease.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ def check_snow_path(path):
return snow_folder
else:
app_folder = os.path.join(path, "app")
other_folder = os.path.join(path, "other")
if os.path.exists(other_folder) and os.path.isdir(other_folder) and os.path.exists(app_folder) and os.path.isdir(app_folder):
newicons_folder = os.path.join(path, "newicons")
if os.path.exists(newicons_folder) and os.path.isdir(newicons_folder) and os.path.exists(app_folder) and os.path.isdir(app_folder):
return path
else:
print(f"The path '{path}' does not include the 'Snow' folder.")
Expand Down Expand Up @@ -366,7 +366,7 @@ def missingDrawable(appfilterpath:str,whitedir:str,otherdir:str):

if len(drawables) > 0:
print('\n\n______ Found non existent drawables ______\n')
print('Possible causes are typos or completly different naming of the icon\n\n')
print('Possible causes are typos or completely different naming of the icon\n\n')
for item in drawables:
toprint = etree.tostring(item,encoding='unicode',method='xml')
print(f'{toprint}')
Expand Down