From adda6613d7fdf47967d5d55057044ac618d40d1a Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Sat, 30 Jan 2021 10:28:42 +0200 Subject: refactor: use Subplot's lib/files --- subplot/ewww.py | 7 +++++++ subplot/ewww.yaml | 3 +++ 2 files changed, 10 insertions(+) (limited to 'subplot') diff --git a/subplot/ewww.py b/subplot/ewww.py index d53b74c..6c93733 100644 --- a/subplot/ewww.py +++ b/subplot/ewww.py @@ -40,6 +40,13 @@ def fixme(*args, **kwargs): assert 0 +# Create a directory. +def create_directory(ctx, dirname=None): + dirname = "./" + dirname + if not os.path.exists(dirname): + os.makedirs(dirname) + + # Create a file. def create_file(ctx, filename=None, content=None): logging.debug(f"Creating file {filename} with {content}") diff --git a/subplot/ewww.yaml b/subplot/ewww.yaml index 375558d..ec5395f 100644 --- a/subplot/ewww.yaml +++ b/subplot/ewww.yaml @@ -8,6 +8,9 @@ - given: "{count} files in {dirname}" function: fixme +- given: directory {dirname} + function: create_directory + - given: file (?P\S+) with "(?P.*)" regex: true function: create_file -- cgit v1.2.1