Skip to content

Commit d28c0f9

Browse files
authored
Merge pull request #973 from I2PC/release-3.24.12
syntax error
2 parents 20a3b36 + 82ecc72 commit d28c0f9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
matrix:
1010
os:
11-
- 'ubuntu-latest'
11+
- 'ubuntu-22.04'
1212

1313
cuda:
1414
- {version: '11.8.0', method: 'network'}

xmipp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,9 @@ def modeCleanBin():
8787
userInput = ''
8888
logger("", forceConsoleOutput=True)
8989
if userInput == confirmationText:
90-
runJob(f"find {SOURCES_PATH}/* -name \"*.so\" -exec rm -rf {{}} \;", showCommand=True)
91-
runJob(f"find {SOURCES_PATH}/* -name \"*.os\" -exec rm -rf {{}} \;", showCommand=True)
92-
runJob(f"find {SOURCES_PATH}/* -name \"*.o\" -exec rm -rf {{}} \;", showCommand=True)
90+
runJob(f"find {SOURCES_PATH}/* -name \"*.so\" -exec rm -rf {{}}", showCommand=True)
91+
runJob(f"find {SOURCES_PATH}/* -name \"*.os\" -exec rm -rf {{}}", showCommand=True)
92+
runJob(f"find {SOURCES_PATH}/* -name \"*.o\" -exec rm -rf {{}}", showCommand=True)
9393
runJob("find . -iname \"*.pyc\" -delete", showCommand=True)
9494
runJob("find . -iname \"*.dblite\" -delete", showCommand=True)
9595
runJob(f"find {os.path.join(SOURCES_PATH, XMIPP, 'applications', 'programs')} --type d -empty", showCommand=True)

0 commit comments

Comments
 (0)