8 lines
211 B
Bash
8 lines
211 B
Bash
#!/bin/bash
|
|
# This script is called automatically during autobuild checkin.
|
|
|
|
version=$(grep '^Version:.*' file.spec)
|
|
|
|
cp -f file.changes python-magic.changes
|
|
sed -i -e "s,Version:.*,$version," python-magic.spec
|