Skip to content

Commit

Permalink
use ls -alh instead of ll
Browse files Browse the repository at this point in the history
  • Loading branch information
jaimergp committed Mar 12, 2024
1 parent fff3c0f commit 6e910b1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/bootstrap.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,21 +38,21 @@ jobs:
- name: Update database with most recent repodata
run: |
set -x
ll -h *.db
ls -alh *.db
python conda_forge_paths/path_to_artifacts.db.py update-from-repodata
ll -h *.db
ls -alh *.db
- name: Update FTS index
run: |
set -x
ll -h *.db
ls -alh *.db
python conda_forge_paths/path_to_artifacts.db.py fts
ll -h *.db
ls -alh *.db
- name: Compress DB file
run: |
ZSTD_NBTHREADS=4 ZSTD_CLEVEL=19 tar --zstd -cf path_to_artifacts.tar.zstd $DB_PATH
ll -h path_to_artifacts.*
ls -alh path_to_artifacts.*
- name: "Upload Artifact"
uses: actions/upload-artifact@v3
Expand Down
2 changes: 1 addition & 1 deletion conda_forge_paths/path_to_artifacts_db.py
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ def update_from_repodata(db):
"subcommands:",
" - bootstrap /path/to/libcfgraph/artifacts/ # initialize the database",
" - fts # index the full text search",
" - [find-artifacts <full path> # find artifacts by full path",
" - find-artifacts <full path> # find artifacts by full path",
" - find-paths <path component> # find full paths by partial matches",
" - update-from-repodata # update the database from current repodata",
sep="\n",
Expand Down

0 comments on commit 6e910b1

Please sign in to comment.