Skip to content

Commit 1539465

Browse files
committed
Remove unnecessary files or directories in binder
1 parent 62adbe5 commit 1539465

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

binder/postBuild

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ from pathlib import Path
1515

1616
ROOT = Path.cwd()
1717

18-
print(ROOT)
18+
print("Current Working dir:", ROOT)
1919

2020
def _(*args, **kwargs):
2121
""" Run a command, echoing the args
@@ -47,22 +47,22 @@ print("JupyterLab with code_snippet is ready to run with:\n")
4747
print("\tjupyter lab\n")
4848

4949
# remove unnecessary directories when using the binder
50-
rm -rf src
51-
rm -rf style
52-
rm -rf _temp_extension
53-
rm -rf Design
54-
rm -rf binder
55-
rm -rf docs
56-
rm -rf code_snippet
57-
rm -rf code_snippet.egg-info
58-
rm -rf schema
59-
rm -rf node_modules
60-
rm install.json
61-
rm package.json
62-
rm PROGRESS.md
63-
rm setup.py
64-
rm pyproject.toml
65-
rm tsconfig.json
66-
rm tsconfig.tsbuildinfo
67-
rm yarn.lock
68-
rm MANIFEST.in
50+
rm -rf ./src
51+
rm -rf ./style
52+
rm -rf ./_temp_extension
53+
rm -rf ./Design
54+
rm -rf ./binder
55+
rm -rf ./docs
56+
rm -rf ./code_snippet
57+
rm -rf ./code_snippet.egg-info
58+
rm -rf ./schema
59+
rm -rf ./node_modules
60+
rm ./install.json
61+
rm ./package.json
62+
rm ./PROGRESS.md
63+
rm ./setup.py
64+
rm ./pyproject.toml
65+
rm ./tsconfig.json
66+
rm ./tsconfig.tsbuildinfo
67+
rm ./yarn.lock
68+
rm ./MANIFEST.in

0 commit comments

Comments
 (0)