Skip to content

Commit

Permalink
cp instead of mv
Browse files Browse the repository at this point in the history
  • Loading branch information
deannagarcia committed Jul 25, 2024
1 parent c560f4b commit 67df3d0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/test_java.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,11 +120,11 @@ jobs:
chmod -R 755 testMaven
ls -la testMaven
ls -la generatedPoms
mv -f generatedPoms/core_mvn-pom.xml testMaven/core/pom.xml
mv -f generatedPoms/lite_mvn-pom.xml testMaven/lite/pom.xml
mv -f generatedPoms/kotlin-lite_mvn-pom.xml testMaven/kotlin-lite/pom.xml
mv -f generatedPoms/kotlin_mvn-pom.xml testMaven/kotlin/pom.xml
mv -f generatedPoms/util_mvn-pom.xml testMaven/util/pom.xml
cp -f generatedPoms/core_mvn-pom.xml testMaven/core/pom.xml
cp -f generatedPoms/lite_mvn-pom.xml testMaven/lite/pom.xml
cp -f generatedPoms/kotlin-lite_mvn-pom.xml testMaven/kotlin-lite/pom.xml
cp -f generatedPoms/kotlin_mvn-pom.xml testMaven/kotlin/pom.xml
cp -f generatedPoms/util_mvn-pom.xml testMaven/util/pom.xml
- name: Install snapshot version locally (using generated pom.xml)
run: |
mvn -e -B -Dhttps.protocols=TLSv1.2 install -Dmaven.test.skip=true
Expand Down

0 comments on commit 67df3d0

Please sign in to comment.