diff options
Diffstat (limited to 'deno_dir.go')
-rw-r--r-- | deno_dir.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/deno_dir.go b/deno_dir.go index 841288936..b3a8c78b9 100644 --- a/deno_dir.go +++ b/deno_dir.go @@ -28,7 +28,7 @@ func CacheFileName(filename string, sourceCodeBuf []byte) string { // Fetches a remoteUrl but also caches it to the localFilename. func FetchRemoteSource(remoteUrl string, localFilename string) ([]byte, error) { //println("FetchRemoteSource", remoteUrl) - Assert(strings.HasPrefix(localFilename, SrcDir), localFilename) + assert(strings.HasPrefix(localFilename, SrcDir), localFilename) var sourceReader io.Reader file, err := os.Open(localFilename) |