mirror of
https://github.com/digital-asset/daml.git
synced 2024-11-10 10:46:11 +03:00
b748fab0f9
* Fix running the IDE on damlc There were two issues: 1. Missing include paths. 2. Files where the module name does not match the file name. I’ve fixed both and added a test that we can load the damlc Main.hs.
9 lines
238 B
Bash
9 lines
238 B
Bash
#!/usr/bin/env bash
|
|
# Copyright (c) 2019 Digital Asset (Switzerland) GmbH and/or its affiliates. All rights reserved.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
ENV_FILE=$1
|
|
ARGS_FILE=$2
|
|
echo "{ENV}" > "$ENV_FILE"
|
|
echo "{ARGS}" > "$ARGS_FILE"
|