Skip to content

Commit 8903b94

Browse files
author
Mykola Tryshnivskyy
committed
Fix compilation on CI
1 parent 5955dd7 commit 8903b94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

do_if_modified.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
print ' do_if_modified <bin_file> <input_file> <output_file>'
88
exit()
99

10-
action_process = sys.argv[1]
10+
action_process = os.path.abspath(sys.argv[1])
1111
input_file = os.path.abspath(sys.argv[2])
1212
output_file = os.path.abspath(sys.argv[3])
1313

0 commit comments

Comments
 (0)