source: ipk/ipkg-utils-050831/ipkg-diff@ 4890

Last change on this file since 4890 was 4890, checked in by obi, 15 years ago

[ipk] fix executable rights

  • Property svn:executable set to *
File size: 221 bytes
Line 
1#!/bin/sh
2
3pkg1=$1
4dir1=`echo $pkg1 | sed s/.ipk//`
5dir1=`basename $dir1`
6pkg2=$2
7dir2=`echo $pkg2 | sed s/.ipk//`
8dir2=`basename $dir2`
9
10ipkg-unbuild $pkg2
11ipkg-unbuild $pkg1
12
13diff -urN $dir1 $dir2
14
15rm -fr $dir1 $dir2
Note: See TracBrowser for help on using the repository browser.