~singpolyma/dhall-ruby

dc343b4b9aa409f8b0129ccca6a000d2fd9c43bc — Stephen Paul Weber 4 years ago e87ba5d
Fix env import decode
1 files changed, 1 insertions(+), 1 deletions(-)

M lib/dhall/binary.rb
M lib/dhall/binary.rb => lib/dhall/binary.rb +1 -1
@@ 187,7 187,7 @@ module Dhall
	class Import
		def self.decode(integrity_check, import_type, path_type, *parts)
			parts[0] = Dhall.decode(parts[0]) if path_type < 2 && !parts[0].nil?
			parts[0] = EnvironmentVariable.decode(parts[0]) if path_type == 5
			parts[0] = EnvironmentVariable.decode(parts[0]) if path_type == 6

			new(
				IntegrityCheck.new(*integrity_check),