From 275d46395b2e96424be7239a21e4f957eeab35d8 Mon Sep 17 00:00:00 2001 From: Mo Langning <133737702+molangning@users.noreply.github.com> Date: Fri, 24 Nov 2023 22:16:52 +0800 Subject: [PATCH] Changed to allow script to execute in github actions --- .bin/file-exts-downloader.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.bin/file-exts-downloader.py b/.bin/file-exts-downloader.py index 2849f4bb6..56b86ea52 100644 --- a/.bin/file-exts-downloader.py +++ b/.bin/file-exts-downloader.py @@ -90,7 +90,7 @@ for i in gfg_exts: exts=list(dict.fromkeys(exts)) -open("file-ext.txt","w").write("\n".join(exts)) +open("./Fuzzing/file-ext.txt","w").write("\n".join(exts)) mutated_exts=[] @@ -100,7 +100,7 @@ for i in exts: mutated_exts=list(dict.fromkeys(mutated_exts)) -open("file-ext-all-cases.txt","w").write("\n".join(mutated_exts)) +open("../Fuzzing/file-ext-all-cases.txt","w").write("\n".join(mutated_exts)) mutated_exts=[] @@ -108,7 +108,7 @@ for i in exts: mutated_exts.append(i.lower()) mutated_exts=list(dict.fromkeys(mutated_exts)) -open("file-ext-lower-cases.txt","w").write("\n".join(mutated_exts)) +open("../Fuzzing/file-ext-lower-cases.txt","w").write("\n".join(mutated_exts)) mutated_exts=[] @@ -116,4 +116,4 @@ for i in exts: mutated_exts.append(i.upper()) mutated_exts=list(dict.fromkeys(mutated_exts)) -open("file-ext-upper-cases.txt","w").write("\n".join(mutated_exts)) +open("../Fuzzing/file-ext-upper-cases.txt","w").write("\n".join(mutated_exts))