59e91c7c58
In .github/workflows/main.yml, for the linux_build job, the variable BUILD_FOR_DISTRIBUTION is set to the string "true" or "false" on CI. Later, in CI/linux/03_package_obs.sh, we perform a boolean check on this variable. However, "false" will evaluate as true, because it is a non-null string. This was causing CI Linux packages to always build as if BUILD_FOR_DISTRIBUTION was enabled, which caused the git commit hash to be omitted from package filenames. Since we know the expected values, let's just test directly if the variable equals "true" to get the expected behavior.