This file is indexed.

/usr/share/quickly/templates/ubuntu-application/test/gtk3upgrade.sh is in quickly-ubuntu-template 12.08.1-0ubuntu2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#!/bin/sh

cd /tmp

rm -rf test-project

quickly create ubuntu-application test-project
# Creating bzr repository and committing
# Congrats, your new project is setup! cd /tmp/test-project/ to start hacking.
# Creating project directory test-project

cd test-project

## Just a nothing command to run implicit upgrade

quickly configure bzr testing

grep '11\.10' .quickly

quickly upgrade

sed -i 's/version = .*/version = 11.10/' .quickly

grep '11\.10' .quickly
# version = 11.10

quickly configure bzr testing
# WARNING: Your project is out of date.  Newly created projects use
# GTK+ 3, PyGI, and GSettings.  See https://wiki.ubuntu.com/Quickly/GTK3 for
# porting information and when you have finished porting your code, run
# 'quickly upgrade' to get rid of this message.

grep '11\.10' .quickly
# version = 11.10

quickly upgrade
# Note: This is the first time you have run Quickly since it has been updated.
# Quickly will now upgrade its files (bin/*, test_project_lib/*, and setup.py).
# But first it will save your project.  View Quickly's changes by running:
# bzr diff

grep '11\.10' .quickly

quickly configure bzr testing

quickly upgrade

quickly configure bzr testing