commit | ed8c24acf0089170e174b747e0d2038013ed645c | [log] [tgz] |
---|---|---|
author | Rico Wind <ricow@google.com> | Fri May 03 08:45:20 2019 +0200 |
committer | Rico Wind <ricow@google.com> | Fri May 03 08:45:20 2019 +0200 |
tree | 066880c470ec59c557aee6914134888daaf4e330 | |
parent | 3a60de4274c2c12896cb11e17d36c4fe9ad9a7f9 [diff] [blame] |
Create the correct directories on golem We need to create the destination, not the source Change-Id: I806434a3ea5d40bcbd72af26b4147ee6398ff793
diff --git a/tools/golem.py b/tools/golem.py index 9c0f4a6..466c3ab 100755 --- a/tools/golem.py +++ b/tools/golem.py
@@ -51,7 +51,7 @@ ' --golem locally'.format(dest)) print('Symlinking {} to {}'.format(src, dest)) if '/' in dir: - os.makedirs(os.path.dirname(dir)) + os.makedirs(os.path.dirname(dest)) os.symlink(src, dest) if __name__ == '__main__':