Commit Graph

7 Commits

Author SHA1 Message Date
Fabian Jakobs 90d6490106
Centralize code to detect if we are running on Databricks 2024-09-04 15:15:16 +02:00
Fabian Jakobs 08b6b10ff0
add unit tests 2024-09-04 15:15:16 +02:00
Fabian Jakobs 62b2451c10
fix tests 2024-09-04 15:15:16 +02:00
Fabian Jakobs 6585a757bb
address some of the PR feedback 2024-09-04 15:15:16 +02:00
Fabian Jakobs 8d78809469
use env.lookup 2024-09-04 15:15:16 +02:00
Fabian Jakobs 662234fb97
Fix "bundle init" when run from Databricks 2024-09-04 15:15:16 +02:00
shreyas-goenka fc8729d162
Only treat files with .tmpl extension as templates (#594)
## Changes
In a world before this PR, all files would be treated as `go text
templates`, making the content in these files quake in fear since they
would be executed (as a template).

This PR makes it so that only files with the `.tmpl` extension are
understood to be templates. This is useful for avoiding ambiguity in
cases like where a binary file could be interpreted as a go text
template otherwise.

In order to do so, we introduce the `copyFile` struct which does a copy
of the source file from the template without loading it into memory.

## Tests
Unit tests
2023-08-01 13:43:27 +00:00