15 lines
227 B
Plaintext
15 lines
227 B
Plaintext
post_install() {
|
|
cd mingw64
|
|
local _prefix=$(pwd -W)
|
|
cd -
|
|
local _it
|
|
for _it in markdown_py; do
|
|
sed -e "s|/mingw64|${_prefix}|g" \
|
|
-i mingw64/bin/${_it}-script.py
|
|
done
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install
|
|
}
|