fil commited on
Commit
13b32a7
·
unverified ·
1 Parent(s): 459aa37

.cache (eleventy)

Browse files
Files changed (1) hide show
  1. docs/data/presse.parquet.sh +4 -3
docs/data/presse.parquet.sh CHANGED
@@ -1,9 +1,10 @@
1
  # install duckdb if not already present
2
- export PATH=.:$PATH
3
  command -v duckdb || $(
4
- curl --silent --location --output ./duckdb.zip \
 
5
  https://github.com/duckdb/duckdb/releases/download/v0.10.0/duckdb_cli-linux-amd64.zip && \
6
- unzip -qq ./duckdb.zip && chmod +x ./duckdb
7
  )
8
 
9
  export TMPDIR="dist"
 
1
  # install duckdb if not already present
2
+ export PATH=.cache:$PATH
3
  command -v duckdb || $(
4
+ mkdir -p .cache
5
+ curl --location --output .cache/duckdb.zip \
6
  https://github.com/duckdb/duckdb/releases/download/v0.10.0/duckdb_cli-linux-amd64.zip && \
7
+ unzip -qq .cache/duckdb.zip && chmod +x .cache/duckdb
8
  )
9
 
10
  export TMPDIR="dist"