Skip to content

Commit

Permalink
Remove ls -la
Browse files Browse the repository at this point in the history
  • Loading branch information
fabasoad committed Jan 7, 2025
1 parent dc66d7d commit c0f65b0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 4 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,7 @@ runs:
run: ./install-cobc.sh "${INPUT_VERSION}" "${{ steps.info.outputs.bin-path }}"
shell: sh
working-directory: ${{ github.action_path }}/src

- name: Print version
run: cobc --info
shell: sh
1 change: 0 additions & 1 deletion src/install-cobc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ main() {
url="https://sourceforge.net/projects/open-cobol/files/gnu-cobol/${minor_version}/gnucobol-${input_version}.tar.gz"
curl -sLk "${url}" -o "${bin_path}/gnucobol.tar.gz"
tar -xvf "${bin_path}/gnucobol.tar.gz" -C "${bin_path}" --strip-components 1
ls -la "${bin_path}"
rm -f "${bin_path}/gnucobol.tar.gz"
cd "${bin_path}" \
&& ./configure --prefix=/usr \
Expand Down

0 comments on commit c0f65b0

Please sign in to comment.