Skip to content

Commit

Permalink
Removing &&
Browse files Browse the repository at this point in the history
  • Loading branch information
prmoore77 committed Jan 24, 2024
1 parent cb53327 commit dbb7c5b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build-docker-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:

- name: Zip artifacts
run: |
mv build/flight_sql . &&
mv build/flight_sql .
zip -j ${{ env.zip_file_name }} flight_sql
- name: Upload artifacts
Expand Down Expand Up @@ -79,15 +79,15 @@ jobs:

- name: Install build requirements
run: |
sudo apt-get update && \
sudo apt-get update
sudo apt-get install -y \
build-essential \
ninja-build \
cmake \
gcc \
git \
libboost-all-dev && \
sudo apt-get clean && \
libboost-all-dev
sudo apt-get clean
sudo rm -rf /var/lib/apt/lists/*
- name: Configure Project
Expand All @@ -98,7 +98,7 @@ jobs:

- name: Zip artifacts
run: |
mv build/flight_sql . &&
mv build/flight_sql .
zip -j ${{ env.zip_file_name }} flight_sql
- name: Upload artifacts
Expand Down

0 comments on commit dbb7c5b

Please sign in to comment.