You can’t.
You’ll have to declare an extra var (or use a more functional style :-)).
Simplistic example:
def save(srcPath: String, destPath: String) {
val normalizedDestPath =
if (destPath.endsWith("https://stackoverflow.com/")) destPath
else destPath + "https://stackoverflow.com/"
// do something with normalizedDestPath
}