Skip to content

Commit

Permalink
refactor: removed unused output dir
Browse files Browse the repository at this point in the history
  • Loading branch information
arteevraina committed Sep 1, 2022
1 parent 502a0d5 commit d9ed34d
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions fypp-gfortran.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,6 @@
# Read the system arguments.
args = sys.argv[1:]

# Set the output directory.
output_dir = Path("build" , "preprocessed_files")

# If output directory does not exist, create it.
if not output_dir.exists():
output_dir.mkdir(parents=True)

# Get the filenames with .fypp extension and convert to string.
source_file = [arg for arg in args if arg.endswith(".fypp")]
output_file = [arg for arg in args if arg.endswith(".o")]
Expand Down

0 comments on commit d9ed34d

Please sign in to comment.