File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change 77} : rec {
88 start-chainmain = pkgs . writeShellScriptBin "start-chainmain" ''
99 export PATH=${ pkgs . pystarport } /bin:${ chainmain } /bin:$PATH
10+ source ${ config . dotenv }
1011 ${ ../scripts/start-chainmain } ${ config . chainmain-config } $@
1112 '' ;
1213 start-cronos = pkgs . writeShellScriptBin "start-cronos" ''
1314 # rely on environment to provide cronosd
1415 export PATH=${ pkgs . pystarport } /bin:$PATH
16+ source ${ config . dotenv }
1517 ${ ../scripts/start-cronos } ${ config . cronos-config } $@
1618 '' ;
1719 start-geth = pkgs . writeShellScriptBin "start-geth" ''
1820 export PATH=${ pkgs . go-ethereum } /bin:$PATH
21+ source ${ config . dotenv }
1922 ${ ../scripts/start-geth } ${ config . geth-genesis } $@
2023 '' ;
2124 start-hermes = pkgs . writeShellScriptBin "start-hermes" ''
2225 export PATH=${ hermes } /bin:$PATH
26+ source ${ config . dotenv }
2327 ${ ../scripts/start-hermes } ${ config . hermes-config } $@
2428 '' ;
2529 start-scripts = pkgs . symlinkJoin {
You can’t perform that action at this time.
0 commit comments