Skip to content

Commit 139e23e

Browse files
committed
comment check_file_writable since it is always different in different OS
1 parent 0a1738b commit 139e23e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/common.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef COMMON_H
22
#define COMMON_H
33

4-
#define FASTP_VER "0.13.0"
4+
#define FASTP_VER "0.13.1"
55

66
#define _DEBUG false
77

src/options.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,13 +50,13 @@ bool Options::validate() {
5050
}
5151

5252
if(!out1.empty()) {
53-
check_file_writable(out1);
53+
//check_file_writable(out1);
5454
if(out1 == out2) {
5555
error_exit("read1 output (--out1) and read1 output (--out2) should be different");
5656
}
5757
}
5858
if(!out2.empty()) {
59-
check_file_writable(out2);
59+
//check_file_writable(out2);
6060
}
6161

6262
if(compression < 1 || compression > 9)

0 commit comments

Comments
 (0)