mirror of
https://github.com/lionsoul2014/ip2region.git
synced 2025-12-08 19:25:22 +00:00
12 lines
156 B
Bash
Executable File
12 lines
156 B
Bash
Executable File
#!/bin/sh
|
|
echo 'create dir'
|
|
if [ ! -d "data" ]; then
|
|
mkdir data
|
|
fi
|
|
|
|
echo "copy db"
|
|
cp '../../data/ip2region.db' './data/'
|
|
|
|
echo "npm publish"
|
|
npm publish
|