mirror of
https://github.com/selfxyz/self.git
synced 2026-04-05 03:00:53 -04:00
11 lines
218 B
Bash
Executable File
11 lines
218 B
Bash
Executable File
#!/bin/bash
|
|
|
|
SRC_DIR="../../contracts/artifacts"
|
|
DEST_DIR="./src/abi"
|
|
|
|
mkdir -p "$DEST_DIR"
|
|
|
|
find "$SRC_DIR" -type f -name "*.json" ! -name "*.dbg.json" -exec cp {} "$DEST_DIR" \;
|
|
|
|
echo "Copied ABI files to $DEST_DIR"
|