docsearch-scraper/entrypoint.sh

9 lines
299 B
Bash
Raw Normal View History

2021-07-06 00:56:01 +08:00
#!/bin/sh
# https://docs.github.com/en/actions/creating-actions/dockerfile-support-for-github-actions
# `$*` expands the `args` supplied in an `array` individually
# or splits `args` in a string separated by whitespace.
2021-07-06 16:43:36 +08:00
sh -c "ls -lah"
sh -c "ls -lah src"
2021-07-06 00:56:01 +08:00
sh -c "pipenv run python -m src.index $*"