@fairmint/canton-node-sdk
Version:
Canton Node SDK
13 lines (10 loc) • 445 B
text/typescript
// Copyright (c) 2024 Digital Asset (Switzerland) GmbH and/or its affiliates. All rights reserved.
// SPDX-License-Identifier: Apache-2.0
import { PulumiAbortController } from '../pulumi';
import { downAllTheValidatorsStacks } from './pulumiDown';
const abortController = new PulumiAbortController();
downAllTheValidatorsStacks(abortController).catch(e => {
console.error('Failed to run destroy');
console.error(e);
process.exit(1);
});