mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-26 03:25:09 +00:00
16 lines
255 B
Bash
Executable file
16 lines
255 B
Bash
Executable file
#!/bin/sh
|
|
|
|
ENV_DAL="$DISCOVERY_AS_LOCALHOST"
|
|
|
|
echo "ENV_DAL:""$DISCOVERY_AS_LOCALHOST"
|
|
|
|
if [ "$ENV_DAL" != "true" ]
|
|
then
|
|
export DISCOVERY_AS_LOCALHOST=true
|
|
fi
|
|
|
|
echo "DISCOVERY_AS_LOCALHOST="$DISCOVERY_AS_LOCALHOST
|
|
|
|
echo "run fabcar..."
|
|
|
|
go run fabcar.go
|