You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
192 B
10 lines
192 B
![]()
13 years ago
|
#!/bin/sh
|
||
|
|
||
|
for i in $(seq 1 10)
|
||
|
do
|
||
![]()
10 years ago
|
echo 0.0.$i > ../../../alias/test-stable-$i
|
||
![]()
11 years ago
|
mkdir -p ../../../v0.0.$i
|
||
![]()
10 years ago
|
echo 0.1.$i > ../../../alias/test-unstable-$i
|
||
|
mkdir -p ../../../v0.1.$i
|
||
![]()
13 years ago
|
done
|