Filename consistency.

This commit is contained in:
Nolan Darilek 2020-08-18 11:02:02 -05:00
parent 4ff4d26c77
commit 971f0afbfd
2 changed files with 2 additions and 2 deletions

View File

@ -89,7 +89,7 @@ jobs:
cp linux/release/*.so godot-tts/target/release cp linux/release/*.so godot-tts/target/release
cp windows/release/*.dll godot-tts/target/release cp windows/release/*.dll godot-tts/target/release
cp macos/release/*.dylib godot-tts/target/release cp macos/release/*.dylib godot-tts/target/release
cp android/outputs/aar/godot_tts.aar godot-tts/ cp android/outputs/aar/godot-tts.aar godot-tts/
cp LICENSE godot-tts cp LICENSE godot-tts
cp README.md godot-tts cp README.md godot-tts
cp TTS.gd godot-tts.g* godot-tts cp TTS.gd godot-tts.g* godot-tts

View File

@ -31,7 +31,7 @@ android {
libraryVariants.all { variant -> libraryVariants.all { variant ->
variant.outputs.all { output -> variant.outputs.all { output ->
output.outputFileName = "godot_tts.aar" output.outputFileName = "godot-tts.aar"
} }
} }
} }