Skip to content

Commit

Permalink
fix typo in centos.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
sgatto committed Jul 18, 2024
1 parent eda76d2 commit f2149b6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/centos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,10 @@ jobs:
- name: retrieve install from docker
run: |
container_id=\$(docker create centos:shared-${{ matrix.shared }}-sirius-${{ matrix.sirius }})
container_id=$(docker create centos:shared-${{ matrix.shared }}-sirius-${{ matrix.sirius }})
rm -rf ./install
docker cp \$container_id:/home/project/build/install ./install
docker rm \$container_id
docker cp $container_id:/home/project/build/install ./install
docker rm $container_id
- name: Prepare OR-Tools install
id: or-install
Expand Down

0 comments on commit f2149b6

Please sign in to comment.