Skip to content

Commit

Permalink
fix tars
Browse files Browse the repository at this point in the history
  • Loading branch information
comex committed Jul 15, 2011
1 parent 057d8eb commit 3c0f4b6
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion data
Submodule data updated 6 files
+15 −11 find.c
+5 −1 find.h
+7 −3 mach-o/binary.c
+1 −0 mach-o/binary.h
+29 −10 mach-o/link.c
+7 −1 mach-o/link.h
4 changes: 2 additions & 2 deletions locutus/locutus_server.m
Original file line number Diff line number Diff line change
Expand Up @@ -296,8 +296,8 @@ static void init() {
bool _2x = [[UIScreen mainScreen] scale] > 1.5;
bool ipad = [[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPad;

NSString *icon_url = _2x ? @"http://a.qoid.us/[email protected]" : @"http://a.qoid.us/Cydia.png";
if(ipad) icon_url = @"http://a.qoid.us/Cydia-72.png";
NSString *icon_url = _2x ? @"http://www.jailbreakme.com/saffron/_/[email protected]" : @"http://www.jailbreakme.com/saffron/_/Cydia.png";
if(ipad) icon_url = @"http://www.jailbreakme.com/saffron/_/Cydia-72.png";
UIImage *icon_image = [UIImage imageWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:icon_url]]];
if(icon_image) {
icon_image = [icon darkenedIconImage:icon_image alpha:0.5];
Expand Down
6 changes: 5 additions & 1 deletion starstuff/build-archive.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,8 @@ sync; sync
exit 0
EOF
chmod 755 "$root"/DEBIAN/extrainst_
./fauxsu.sh dpkg-deb -b -z9 "$root" "$2"-"$5".deb
deb="$root" "$2"-"$5".deb
./fauxsu.sh dpkg-deb -b -z9 "$deb"
tar xvf "$deb" data.tar.gz
gunzip data.tar.gz
mv data.tar "fix-$2-$5".tar

0 comments on commit 3c0f4b6

Please sign in to comment.