Skip to content

Commit 7468e10

Browse files
committed
Fix SQLite file path after extraction
1 parent e419185 commit 7468e10

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/test-database-processing.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,9 @@ jobs:
3232
SQLITE_VERSION=3500400
3333
SQLITE_YEAR=2025
3434
wget https://www.sqlite.org/${SQLITE_YEAR}/sqlite-tools-linux-x64-${SQLITE_VERSION}.zip
35-
unzip -q sqlite-tools-linux-x64-${SQLITE_VERSION}.zip
36-
sudo cp sqlite-tools-linux-x64-${SQLITE_VERSION}/sqlite3 /usr/local/bin/
35+
unzip sqlite-tools-linux-x64-${SQLITE_VERSION}.zip
36+
ls -la
37+
sudo cp sqlite3 /usr/local/bin/
3738
sudo chmod +x /usr/local/bin/sqlite3
3839
# Make sure /usr/local/bin is in PATH first
3940
echo "/usr/local/bin" >> $GITHUB_PATH

0 commit comments

Comments
 (0)