Skip to content

Commit da8b88c

Browse files
committed
build.gradle: avoid double quotes unless interpolation is required
1 parent 3ecba02 commit da8b88c

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ plugins {
2020
ext {
2121
joltFork = 'stephengold'
2222
joltTag = 'sg260518'
23-
downloadedHairStraightZip = "downloads/wStraightHair.zip"
23+
downloadedHairStraightZip = 'downloads/wStraightHair.zip'
2424
downloadedJoltZip = "downloads/JoltPhysics-${joltTag}.zip"
2525
downloadedVhacdZip = 'downloads/v-hacd-4.1.0.zip'
2626

@@ -653,8 +653,8 @@ tasks.withType(Sign).configureEach {
653653
// Register tasks to download ZIP archives:
654654

655655
tasks.register('downloadHairStraightZip', Download) {
656-
//src "https://www.cemyuksel.com/research/hairmodels/wStraight.zip"
657-
src "https://raw.githubusercontent.com/stephengold/hair-model-files/refs/heads/master/wStraight.zip"
656+
//src 'https://www.cemyuksel.com/research/hairmodels/wStraight.zip'
657+
src 'https://raw.githubusercontent.com/stephengold/hair-model-files/refs/heads/master/wStraight.zip'
658658
dest file(downloadedHairStraightZip)
659659
overwrite false
660660
}
@@ -674,7 +674,7 @@ tasks.register('downloadVhacdZip', Download) {
674674
tasks.register('unpackHairStraight', Copy) {
675675
dependsOn('downloadHairStraightZip', 'unpackJoltAssets')
676676
from (zipTree(downloadedHairStraightZip)) {
677-
include "wStraight.hair"
677+
include 'wStraight.hair'
678678
}
679679
into layout.projectDirectory.dir('Assets')
680680
}

0 commit comments

Comments
 (0)