fix(remote): define special variables behavior (#2847)

This commit is contained in:
Valentin Maerten
2026-06-29 20:25:25 +02:00
committed by GitHub
parent b93897a6c3
commit 9910c33557
7 changed files with 182 additions and 9 deletions

View File

@@ -42,7 +42,7 @@ func (node *StdinNode) Read() ([]byte, error) {
func (node *StdinNode) ResolveEntrypoint(entrypoint string) (string, error) {
// If the file is remote, we don't need to resolve the path
if isRemoteEntrypoint(entrypoint) {
if IsRemoteEntrypoint(entrypoint) {
return entrypoint, nil
}