Skip to content

Commit 48c6202

Browse files
committed
fix issue #17
1 parent 1ccdc73 commit 48c6202

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

proxmark3.rb

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,10 @@ def install
5151
(bin/"traces").install Dir["traces/*"]
5252

5353
# emv public keys file
54-
(bin/"emv").mkpath
55-
(bin/"emv").install "client/emv/capk.txt"
54+
if File.exist?("client/emv/capk.txt") then
55+
(bin/"emv").mkpath
56+
(bin/"emv").install "client/emv/capk.txt"
57+
end
5658

5759
share.mkpath
5860
# compiled firmware for flashing

0 commit comments

Comments
 (0)