Skip to content

Commit b63878c

Browse files
committed
jo
1 parent 1a04d01 commit b63878c

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/compile.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
2323
- name: Compile zipcracker
2424
run: |
25-
g++ -std=c++17 -pthread -lzip -o zipcracker src/zipcracker.cpp
25+
g++ -std=c++17 -pthread src/zipcracker.cpp -o zipcracker -lzip
2626
2727
- name: Archive binary
2828
run: |
@@ -33,4 +33,4 @@ jobs:
3333
uses: actions/upload-artifact@v3
3434
with:
3535
name: zipcracker
36-
path: artifacts/zipcracker
36+
path: artifacts/zipcracker

src/zipcracker.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
#include <thread>
66
#include <mutex>
77
#include <cstring>
8-
#include <cmath>
98
#include <zip.h>
109
#include <cstdlib>
1110
#include <atomic>

0 commit comments

Comments
 (0)